home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Various / DevDisk 65 (1989)(DevWare PD).zip / DevDisk 65 (1989)(DevWare PD).adf / prosuite / pointers.c < prev    next >
C/C++ Source or Header  |  1990-07-11  |  2KB  |  46 lines

  1.  
  2. /* *** pointers.c ***********************************************************
  3.  *
  4.  * Intuition Pointers Routines
  5.  *     from Book 1 of the Amiga Programmers' Suite by RJ Mical
  6.  *
  7.  * Copyright (C) 1986, 1987, Robert J. Mical
  8.  * All Rights Reserved.
  9.  *
  10.  * Created for Amiga developers.
  11.  * Any or all of this code can be used in any program as long as this
  12.  * entire copyright notice is retained, ok?  Thanks.
  13.  *
  14.  * The Amiga Programmer's Suite Book 1 is copyrighted but freely distributable.
  15.  * All copyright notices and all file headers must be retained intact.
  16.  * The Amiga Programmer's Suite Book 1 may be compiled and assembled, and the 
  17.  * resultant object code may be included in any software product.  However, no 
  18.  * portion of the source listings or documentation of the Amiga Programmer's 
  19.  * Suite Book 1 may be distributed or sold for profit or in a for-profit 
  20.  * product without the written authorization of the author, RJ Mical.
  21.  * 
  22.  * HISTORY      NAME            DESCRIPTION
  23.  * -----------  --------------  --------------------------------------------
  24.  * 12 Aug 86    RJ >:-{)*       Prepare (clean house) for release
  25.  * 3 May 86     =RJ Mical=      Fix prop gadget for both 1.1 and 1.2
  26.  * 1 Feb 86     =RJ Mical=      Created this file.
  27.  *
  28.  * *********************************************************************** */
  29.  
  30.  
  31. #define FILEIO_SOURCEFILE
  32. #include "fileio.h"
  33.  
  34.  
  35. extern USHORT ElecArtsWaitPointer[];
  36.  
  37.  
  38. VOID SetWaitPointer(window)
  39. struct Window *window;
  40. {
  41.     /* This one is the default because it's my favorite */
  42.     SetPointer(window, &ElecArtsWaitPointer[0], ELECARTSPOINT_HEIGHT,
  43.         16, ELECARTSPOINT_XOFF, ELECARTSPOINT_YOFF);
  44. }
  45.  
  46.